home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Periodicals / develop / develop 6 code / Threads / Examples in C / C Build Commands next >
Encoding:
Text File  |  1991-10-10  |  731 b   |  35 lines  |  [TEXT/MPS ]

  1. ## You need to copy the files "Threads.o" and Threads.h into the same folder
  2. ## as the sources (or change the build commands below)
  3.  
  4. C -r "SillyBalls w/ 30 Beeps.c"
  5. Link "SillyBalls w/ 30 Beeps.c.o" ∂
  6.     "{Libraries}"Interface.o ∂
  7.     "{Libraries}"Runtime.o ∂
  8.     #"{CLibraries}"StdCLib.o ∂
  9.     Threads.o ∂
  10.     -o "SillyBalls w/ 30 Beeps"
  11.  
  12.  
  13. C -r "SillyBalls w/ semaphore.c"
  14. Link "SillyBalls w/ semaphore.c.o" ∂
  15.     "{Libraries}"Interface.o ∂
  16.     "{Libraries}"Runtime.o ∂
  17.     #"{CLibraries}"StdCLib.o ∂
  18.     Threads.o ∂
  19.     -o "SillyBalls w/ Semaphore"
  20.  
  21.  
  22. C -r "SillyBalls w/ custom swap.c"
  23. Link "SillyBalls w/ custom swap.c.o" ∂
  24.     "{Libraries}"Interface.o ∂
  25.     "{Libraries}"Runtime.o ∂
  26.     #"{CLibraries}"StdCLib.o ∂
  27.     Threads.o ∂
  28.     -o "SillyBalls w/ custom swap"
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.